home *** CD-ROM | disk | FTP | other *** search
/ Windows Game Programming for Dummies (2nd Edition) / WinGamProgFD.iso / pc / DirectX SDK / DXSDK / samples / Multimedia / VBSamples / DirectPlay / Conferencer / frmSplash.frm (.txt) < prev    next >
Encoding:
Visual Basic Form  |  2001-10-08  |  1.5 KB  |  44 lines

  1. VERSION 5.00
  2. Begin VB.Form frmSplash 
  3.    BorderStyle     =   0  'None
  4.    ClientHeight    =   3675
  5.    ClientLeft      =   0
  6.    ClientTop       =   0
  7.    ClientWidth     =   5970
  8.    LinkTopic       =   "Form1"
  9.    MaxButton       =   0   'False
  10.    MinButton       =   0   'False
  11.    Picture         =   "frmSplash.frx":0000
  12.    ScaleHeight     =   3675
  13.    ScaleWidth      =   5970
  14.    ShowInTaskbar   =   0   'False
  15.    StartUpPosition =   2  'CenterScreen
  16.    Begin VB.Label Label1 
  17.       BackStyle       =   0  'Transparent
  18.       Height          =   2175
  19.       Left            =   3480
  20.       TabIndex        =   0
  21.       Top             =   120
  22.       Width           =   2355
  23.    End
  24. Attribute VB_Name = "frmSplash"
  25. Attribute VB_GlobalNameSpace = False
  26. Attribute VB_Creatable = False
  27. Attribute VB_PredeclaredId = True
  28. Attribute VB_Exposed = False
  29. Option Explicit
  30. '''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''
  31. '  Copyright (C) 1999-2001 Microsoft Corporation.  All Rights Reserved.
  32. '  File:       frmSplash.frm
  33. '''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''''
  34. Private Sub Form_Load()
  35.     Label1.Caption = "This sample will demonstrate how to create many of the features found in Netmeeting with Visual Basic and DirectX8." & _
  36.         vbCrLf & vbCrLf & vbCrLf & "Microsoft
  37.  Netmeeting
  38. Copyright Microsoft 1996-2001"
  39.     Me.Show
  40.     DoEvents
  41.     'Now wait for a short time
  42.     Sleep 1500
  43. End Sub
  44.